home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / shrlk201.zip / _SETUP.1 / Unlock.h < prev    next >
C/C++ Source or Header  |  1997-07-22  |  968b  |  29 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef UnlockH
  3. #define UnlockH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TfrmUnlocker : public TForm
  11. {
  12. __published:    // IDE-managed Components
  13.     TLabel *lblName;
  14.     TLabel *lblUnlockCode;
  15.     TLabel *Label1;
  16.     TEdit *txtUnlockCode;
  17.     TEdit *txtName;
  18.     TButton *btnOk;
  19.     TEdit *txtCompanyName;
  20.     void __fastcall btnOkClick(TObject *Sender);
  21. private:    // User declarations
  22. public:        // User declarations
  23.     __fastcall TfrmUnlocker(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern TfrmUnlocker *frmUnlocker;
  27. //---------------------------------------------------------------------------
  28. #endif
  29.